0a56a44e961aef0d3d2aac99a5d7cd423d5fbb87,integration-tests/src/test/java/tachyon/master/next/JournalIntegrationTest.java,JournalIntegrationTest,ManyFileTest,#,383

Before Change


  @Test
  public void ManyFileTest() throws Exception {
    for (int i = 0; i < 10; i ++) {
      mTfs.createFile(new TachyonURI("/a" + i), (i + 1) * 64);
    }
    mLocalTachyonCluster.stopTFS();
    ManyFileTestUtil();

After Change


  @Test
  public void ManyFileTest() throws Exception {
    for (int i = 0; i < 10; i ++) {
      ClientOptions option = new ClientOptions.Builder(mMasterTachyonConf).setBlockSize(
          (i + 1) * 64).build();
      mTfs.getOutStream(new TachyonURI("/a" + i), option).close();
    }
    mLocalTachyonCluster.stopTFS();
    ManyFileTestUtil();